home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / LCLINT-D.SPK / lclint / guide / bool.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-26  |  206 b   |  17 lines

  1. # include "bool.h"
  2.  
  3. int f (int i, char *s, 
  4.        bool b1, bool b2)
  5. {
  6.   if (i = 3) 
  7.     return b1;
  8.   if (!i || s) 
  9.     return i;
  10.   if (s) 
  11.     return 7;
  12.   if (b1 == b2) 
  13.     return 3;
  14.   return 2;
  15. }
  16.       
  17.